home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1997 July / macformat52.iso / mac / Shareware Plus / Developers / YAAF v1.0 alpha 1 / (Sources) / Standard Controls / Factory / factory.h next >
Text File  |  1997-04-15  |  543b  |  25 lines

  1. /*    factory.h
  2.  *
  3.  *        This is the standard controls factory that is
  4.  *    initialized when I'm started up
  5.  */
  6.  
  7. #ifndef __FACTORY_H__
  8. #define __FACTORY_H__
  9.  
  10. #include <XView.h>
  11.  
  12. /************************************************************************/
  13. /*                                                                        */
  14. /*    View Factory                                                        */
  15. /*                                                                        */
  16. /************************************************************************/
  17.  
  18. class XGIStdClassFactory : public XGViewFactory {
  19.     public:
  20.         XGView                    *CreateView(long,XGView *,XGArgStream &);
  21. };
  22.  
  23. #endif // __FACTORY_H__
  24.  
  25.